home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / demos / 11 / general / 1stprntr.doc next >
Encoding:
Text File  |  1986-04-17  |  2.9 KB  |  61 lines

  1.  
  2. ********************************************************************************
  3.  
  4. There have been a lot of questions about how to set up a custom printer driver 
  5. for 1ST_Word and I will try to answer that for you here. The first thing you 
  6. must remember is that the file 1ST_PRNT.DOT MUST be in the root directory of 
  7. the  disk drive as that is the configuration data for your printer. To set it 
  8. up you follow these directions:
  9.  
  10. 1. Boot 1ST WORD
  11.  
  12. 2. Open the PRINTER folder and open the appropriate file with the .HEX 
  13.    extender which is closest to your type of printer. (I'll use mine as an 
  14.    example, Epson FX100 so I loaded the FX80 file)
  15.  
  16. 3. Some of the features of the Epson are "commented" out by being preceded 
  17.    with an *. If what you want is there just delete the *. If not you may be 
  18.    able to implement it by the following.
  19.  
  20. 4. Look in your printer manual or the hex codes of the capability you want.
  21.  
  22. 5. Pick a character in the character set before hex 20, like the LCD numbers in
  23.    the char. table. Insert in here the Hex codes you want such as, for instance,
  24.    if you want to implement proportional spacing on the Epson you could define
  25.    the LCD 0 as "start prop. spacing" by typing in the following 
  26.    
  27.    10, 1B, 70, 31       * LCD 0 = PROPORTIONAL SPACING/start
  28.  
  29.    (The 10 is already there but the commas and spaces between hex numbers
  30.    must be used. To define LCD 1 as "end prop. spacing" type this:
  31.  
  32.    11, 1B, 70, 30,      * LCD 1 = END PROPORTIONA SPACIND/end
  33.  
  34.    The stuff after the * is just comment so you can print it out and remember
  35.    what you defined them as.
  36.  
  37. 6. After you have defined what you want save the file using the "save as" 
  38.    option from the file menu. (To be sure you are handling the right
  39.    source file go to the top of the file just below where it says "Name of 
  40.    printer" and type in the name of your printer.)
  41.  
  42. 7. Then double click on the INSTALL.PRG file. When it runs, give it the name 
  43.    of your configuration file (the name you saved it under). Then it will 
  44.    make a new 1ST_WORD.DOT file in the PRINTER folder.
  45.  
  46. 8. Now you have to copy that file out  to the root directory by opening the
  47.    PRINTER file in one window and the regular disk directory in another and
  48.    dragging it from the folder to the other window.
  49.  
  50. 9. If you followed these steps carefully, you should now be able to use prop.
  51.    spacing by placing the cursor where you want it to start, going
  52.    to the on screen char. table, clicking the LCD 0, where you want to start,
  53.    and then moving cursor to where you want to end it and then clicking on the
  54.    LCD1.
  55.  
  56. I have implemented Proportional, double strike and elongated in this way. You
  57. should be aware that this may conflict with future updates with new features
  58. which might use these characters in the font table.
  59.  
  60. **********************************************